home *** CD-ROM | disk | FTP | other *** search
/ Java Programmer's Toolkit / Java Programmer's Toolkit.iso / applets / collectn / implemen.jav < prev    next >
Text File  |  1995-10-14  |  1KB  |  55 lines

  1. /*
  2.   File: ImplementationError.java
  3.  
  4.   Originally written by Doug Lea and released into the public domain. 
  5.   Thanks for the assistance and support of Sun Microsystems Labs, Agorics 
  6.   Inc, Loral, and everyone contributing, testing, and using this code.
  7.  
  8.   History:
  9.   Date     Who                What
  10.   24Sep95  dl@cs.oswego.edu   Create from collections.java  working file
  11.  
  12. */
  13.  
  14. package collections;
  15.  
  16. /**
  17.  * ImplementationError is thrown by 
  18.  * ImplementationCheckable.checkImplementation upon failure
  19.  * to verify internal representation constraints.
  20.  * 
  21.  * @author Doug Lea
  22.  * @version 0.93
  23.  *
  24.  * <P> For an introduction to this package see <A HREF="index.html"> Overview </A>.
  25.  *
  26. **/
  27.  
  28. public class ImplementationError extends Error {
  29.  
  30. /**
  31.  * The object failing the ImplementationCheck
  32. **/
  33.   
  34.   public Object failedObject;
  35.  
  36.   public ImplementationError() { super(); }
  37.  
  38.   public ImplementationError(String msg, Object v) { 
  39.     super(msg); failedObject = v; 
  40.   }
  41.  
  42. /**
  43.  * Assertion checking utility.
  44.  * Throws Implementation error if pred is false.
  45.  * @param obj -- the object making the assertion
  46.  * @param pred -- the assertion
  47. **/
  48.   public static void assert(Object obj, boolean pred) 
  49.   throws ImplementationError {
  50.     if (!pred) throw new ImplementationError("Assertion failure", obj);
  51.   }
  52.       
  53. }
  54.  
  55.